home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / fglqbx10.zip / 07-10.BAS < prev    next >
BASIC Source File  |  1991-06-06  |  361b  |  25 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. OldMode = FGgetmode
  6. FGsetmode 16
  7. FGinitw
  8. FGsetworld 0.0, 6.39, 0.0, 3.49
  9. FGsetsizew 0.21
  10.  
  11. FGsetcolor 7
  12. Half# = FGswlength(" Hello there. ",14) * 0.5
  13. FGrectw 3.2-Half#, 3.2+Half#, 1.6, 1.9
  14.  
  15. FGsetcolor 10
  16. FGmovew 3.2, 1.65
  17. FGswtext "Hello there.", 12, 0
  18.  
  19. FGwaitkey
  20.  
  21. FGsetmode OldMode
  22. FGreset
  23.  
  24. END
  25.